All files / src/app/admin/dev/tickets/[id] page.tsx

0% Statements 0/19
100% Branches 0/0
0% Functions 0/1
0% Lines 0/19

Press n or j to go to the next uncovered block, b, p or k for the previous block.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20                                       
/**
 * Dev Ticket Detail Page
 * /admin/dev/tickets/[id] - View and manage a single dev ticket
 */

import DevTicketDetail from '@/components/features/admin/dev/DevTicketDetail';

export const metadata = {
  title: 'Ticket Details | Dev Tickets',
  description: 'View and manage dev ticket details'};

interface PageProps {
  params: Promise<{ id: string }>;
}

export default async function DevTicketDetailPage({ params }: PageProps) {
  const { id } = await params;
  return <DevTicketDetail ticketId={id} />;
}